home *** CD-ROM | disk | FTP | other *** search
- # Make file for Kermit library
-
- # Copyright (c) 1990, 1991 by
- # William S. Hall
- # 3665 Benton Street #66
- # Santa Clara, CA 95051
-
- # The library created must be linked to the terminal modules
-
- # compile macro for Microsoft 6.0 compiler
- cp=cl -c -AM -Ghsw -Osle -Zpe -W4 -DCOLUMBIA
-
- #
- # make the library
- #
- wkkerm.lib: wart.exe wkkerm.obj wkkfns.obj wkkmsc.obj wkkint.obj
- lib wkkerm-+wkkerm-+wkkfns-+wkkmsc-+wkkint;
- del wkkerm.bak
-
- #
- # make the Wart state builder
- #
- wart.exe : wkwart.c wkkdeb.h
- cl -Os -DCOLUMBIA -Fewart.exe wkwart.c
- del wkwart.obj
-
- #
- # make the protocol module
- #
- wkkerm.c : wkkerm.w
- wart wkkerm.w wkkerm.c
-
- #
- # Make the Kermit module .OBJ files
- #
- wkkerm.obj : wkkerm.c wkkerm.h
- $(cp) -NT KRM_WNKERM wkkerm.c
-
- wkkfns.obj : wkkfns.c wkkerm.h wkkdlg.h wkasci.h
- $(cp) -NT KRM_WNKERM wkkfns.c
-
- wkkmsc.obj : wkkmsc.c wkkerm.h wkkdlg.h wkasci.h
- $(cp) -NT KRM_WNKMSC wkkmsc.c
-
- wkkint.obj : wkkint.c wkkerm.h wkasci.h
- $(cp) -NT KRM_WNKINT wkkint.c
-
-